<name>Tami Blair</name>
<profession>Stablemaster</profession>
<dialogue>
  <greeting>
    <reply>
      <text>This party will, ultimately, be judged on its ability to deliver on its promise.</text>
      <return>main</return>
    </reply>
  </greeting>
  <main>
    <option>
      <text>How far does this coachline go?</text>
      <npc>
        <reply>
          <text>[gender], the Highland Caravans connect Serenity to S'Fauni. Mind you, once you're in it, a coach can only go one way. It has no reverse gear.</text>
          <return>main</return> 
        </reply>
      </npc>
    </option>
    <option>
      <text>We would like a ride to Serenity.</text>
      <npc>
        <reply>
          <if><day>Friday</day></if>
          <text>The coach leaves on Sunday.</text>
          <return>main</return> 
        </reply>
        <reply>
          <ifnot>
            <day>!Monday</day>
            <day>!Wednesday</day>
            <day>!Saturday</day>
          </ifnot>
          <text>The coach leaves tomorrow.</text>
          <return>main</return> 
        </reply>
        <reply>
          <if><hour>!6</hour></if>
          <text>The coach will not be ready until six, [gender].</text>
          <return>main</return> 
        </reply>
        <reply>
          <if><hour>18</hour></if>
          <text>You just missed the coach! The next one will go in a couple of days.</text>
          <return>main</return> 
        </reply>
        <reply>
          <if><gold>!travel</gold></if>
          <text>You cannot pay the fee.</text>
          <return>main</return> 
        </reply>
        <reply>
          <script>
            <gold>travel</gold>
            <log>Took coach to Serenity</log>
            <days>2</days>
            <music>serenity</music>
            <map>Serenity</map>
            <log>Arrived in Serenity</log>
          </script>
          <return>exit</return>
        </reply>
      </npc>
    </option>
    <option>
      <text>We'll be back another time.</text>
      <npc>
        <reply>
          <return>exit</return> 
        </reply>
      </npc>
    </option>
  </main> 
</dialogue>